go/types.Checker.objPath (field)

13 uses

	go/types (current package)
		check.go#L198: 	objPath    []Object              // path of object dependencies during type-checking (for cycle reporting)
		check.go#L277: 	check.objPathIdx[obj] = len(check.objPath)
		check.go#L278: 	check.objPath = append(check.objPath, obj)
		check.go#L283: 	i := len(check.objPath) - 1
		check.go#L284: 	obj := check.objPath[i]
		check.go#L285: 	check.objPath[i] = nil // help the garbage collector
		check.go#L286: 	check.objPath = check.objPath[:i]
		check.go#L349: 	check.objPath = nil
		cycles.go#L120: 			cycle := check.objPath[i:]
		decl.go#L65: 		check.trace(obj.Pos(), "-- checking %s (objPath = %s)", obj, pathString(check.objPath))
		decl.go#L186: 	cycle := check.objPath[start:]